//SECONDARY CUSTOM CODE
//Start - Function for enabling the signature for WI Residents only
function DataAwareSignature()
{
  //Declare Variables
  var TeAWebSigP2TxtFld = this.getField("TEAWEB_SIG_P_2_TXT");
  var PStateFld = this.getField("P_PRI_ADDR_STATE");

  //Set Initial Values
  TeAWebSigP2TxtFld.value = "0";

  //Evaluate Conditions
  if (PStateFld.value == "WI")
  {   
  TeAWebSigP2TxtFld.value = "1";
  }
}
//End - Function for enabling the signature for WI Residents only